/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

.container{

    width:92%;
    max-width:1300px;

    margin:auto;

}

/* Navbar */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:55px;

    width:auto;

}

/* Navigation */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#1e293b;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00bfff;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:#00bfff;

}

/* Button */

.quote-btn{

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:#ffffff;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}

/* Mobile Icon */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    cursor:pointer;

    color:#1e293b;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#ffffff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.12);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}

/* ================= SERVICE DETAILS ================= */

.service-details{

    padding:120px 0;

    background:#ffffff;

}

/* Heading */

.service-heading{

    text-align:center;

    margin-bottom:90px;

}

.service-heading h2{

    font-size:clamp(2.6rem,5vw,4.2rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.service-heading span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.service-heading p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    color:#000000;

    line-height:1.8;

}

/* Grid */

.service-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* Left */

.service-icon{

    width:64px;

    height:64px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #00a8e8
    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    margin-bottom:28px;

}

.service-content h3{

    font-size:42px;

    color:#0f172a;

    margin-bottom:15px;

    font-weight:800;

}

.service-desc{

    font-size:19px;

    color:#000000;

    line-height:1.4;

    margin-bottom:35px;

}

.service-content h4{

    font-size:22px;

    color:#0f172a;

    margin-bottom:18px;

    margin-top:25px;

}

/* List */

.service-list{

    list-style:none;

    margin-bottom:35px;

}

.service-list li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:10px;

    color:#000000;

    line-height:1.4;

    font-size:17px;

}

.service-list i{

    color:#00bfff;

    margin-top:4px;

    font-size:17px;

}

/* Industries */

.industry-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.industry-tags span{

    padding:10px 18px;

    border-radius:30px;

    border:1px solid #dbe4ee;

    background:#fff;

    color:#000000;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.industry-tags span:hover{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#fff;

    border-color:transparent;

}

/* Right */

.image-card{

    background:#fff;

    border-radius:22px;

    padding:18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    border:1px solid #e2e8f0;

}

.image-card img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:16px;

}

/* Hover */

.image-card{

    transition:.4s;

}

.image-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,198,255,.18);

}

/* Animation */

.service-content{

    opacity:0;

    transform:translateX(-40px);

    transition:.25s ease-out;

}

.service-image{

    opacity:0;

    transform:translateX(40px);

    transition:.25s ease-out;

}

.service-content.show-service,

.service-image.show-service{

    opacity:1;

    transform:translateX(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .service-grid{

        gap:60px;

    }

}

@media(max-width:992px){

    .service-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .service-content{

        order:2;

    }

    .service-image{

        order:1;

    }

    .service-content h3{

        font-size:34px;

    }

}

@media(max-width:768px){

    .service-details{

        padding:90px 0;

    }

    .service-heading{

        margin-bottom:60px;

    }

    .service-heading p{

        font-size:17px;

    }

    .service-content h3{

        font-size:30px;

    }

    .service-desc{

        font-size:17px;

    }

    .service-list li{

        font-size:16px;

    }

    .image-card img{

        height:320px;

    }

}

@media(max-width:480px){

    .service-heading h2{

        font-size:42px;

    }

    .service-content h3{

        font-size:26px;

    }

    .industry-tags{

        gap:8px;

    }

    .industry-tags span{

        font-size:13px;

        padding:8px 14px;

    }

    .image-card img{

        height:250px;

    }

}



/* ================= CTA SECTION ================= */

.cta-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #edf9ff 0%,
        #f5f1ff 100%
    );

}

.cta-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.cta-content h2{

    font-size:clamp(3rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.15;

    color:#0f172a;

    max-width:900px;

    margin:0 auto 25px;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 50px;

    font-size:22px;

    line-height:1.7;

    color:#000000;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    min-width:270px;

    padding:18px 36px;

    text-decoration:none;

    border-radius:55px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

/* Primary */

.primary-btn{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:
    0 15px 35px rgba(80,80,255,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(80,80,255,.35);

}

.primary-btn i{

    transition:.3s;

}

.primary-btn:hover i{

    transform:translateX(6px);

}

/* Secondary */

.secondary-btn{

    background:#ffffff;

    color:#0f172a;

    border:1px solid #d9e3ef;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);

}

.secondary-btn:hover{

    background:#0f172a;

    color:#ffffff;

    border-color:#0f172a;

    transform:translateY(-5px);

}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-content p{

        font-size:18px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:18px;

    }

    .cta-btn{

        width:100%;

        max-width:330px;

    }

}

/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}